Merged
Conversation
31f126f to
c0821cb
Compare
…iadb_jdbc_driver # Conflicts: # build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
So far, ScalarDB has been using the Mysql JDBC driver for both MySQL and MariaDB, but the driver does not support fractional seconds for time-related types when used with MariaDB 10.11.
The reason is that the MariaDB server returns a version number that does not follow the MySQL version standard and is incorrectly parsed by the MySQL driver which causes it to disable fractional seconds support.
This issue does not occur with MariaDB 11.4 though.
To address the issue, the dedicated MariaDB Connector/J JDBC driver will be used for any connection URL starting with
jdbc:mariadbRelated issues and/or PRs
N/A
Changes made
Add the MariaDB JDBC driver.
Checklist
Additional notes (optional)
Release notes
Use the MariaDB Connector/J JDBC driver for any connection URL starting with
jdbc:mariadb